home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d2
/
rwmnu326.arc
/
PRINTER.MNU
< prev
next >
Wrap
Text File
|
1991-02-08
|
8KB
|
305 lines
,--------------------------------------------------------------------------
017 -- BackGround Color
017 -- Selection Color
04f -- Page title color
017 -- Color of the letters (A-I)
04f -- The color of the Program Title line
070 -- The color of the highlight bar
017 -- The color of the date & time
017 -- The color of the NUM,CAPS, and SCROLL
017 -- The page message color
003 -- The static input color
001 -- ESCape to DOS value ( 0 for no, 1 or more for yes. )
,--------------------------------------------------------------------------
~Printer Control Menu for the IBM Proprinter (Page#1)
,
,-------------------------------------------------------
, Sample MNU file of how to control your printer
, by
, Robert Wilson
,-------------------------------------------------------
,
,//////////////////////////////////////////////////////////
,////////////////Reset the Printer/////////////////////////
,//////////////////////////////////////////////////////////
:Reset the Printer
,Return the printer to default mode
\@echo off
\cls
\echo I0>prn
\echo >prn
\echo >prn
\echo >prn
\echo >prn
\echo >prn
\echo F>prn
\echo H>prn
\echo R>prn
\echo -0>prn
\echo _0>prn
\echo >prn
\m printer.mnu
,//////////////////////////////////////////////////////////
,////////////////End of Reset the Printer//////////////////
,//////////////////////////////////////////////////////////
,
,
,//////////////////////////////////////////////////////////
,////////////////Condensed Print (On/Off)//////////////////
,//////////////////////////////////////////////////////////
:Condensed Print (On/Off)
,Condensed Print - 17.1 CPI
]
]Do you want to turn condensed print ON or OFF,
]Press [ESC] to return to the Menu.
]
]
[[On
[[Off
\@echo off
\cls
\if %1 == On goto ConOn
\echo >prn
\m printer.mnu
\:ConOn
\echo >prn
\m printer.mnu
,//////////////////////////////////////////////////////////
,////////////////End of Condensed Print (On/Off)///////////
,//////////////////////////////////////////////////////////
,
,
,//////////////////////////////////////////////////////////
,/////////////////Compressed Print (On/Off)////////////////
,//////////////////////////////////////////////////////////
:Compressed Print (On/Off)
,Compressed Print - 12 CPI
]
]Do you want to turn compressed print On or Off?
]Press [ESC] to return to the Menu.
]
]
[[On
[[Off
\@echo off
\cls
\if %1 == On goto CompOn
\echo >prn
\d:
\cd\menu
\m printer.mnu
\:CompOn
\echo ¢:>prn
\m printer.mnu
,//////////////////////////////////////////////////////////
,////////////////End of Compressed Print (On/Off)//////////
,//////////////////////////////////////////////////////////
,
,
,//////////////////////////////////////////////////////////
,////////////////Form Feed/////////////////////////////////
,//////////////////////////////////////////////////////////
:Form Feed
,Advance to top of next page
\@echo off
\cls
\echo >prn
\m printer.mnu
,//////////////////////////////////////////////////////////
,////////////////End of Form Feed//////////////////////////
,//////////////////////////////////////////////////////////
,
,
,//////////////////////////////////////////////////////////
,////////////////Emphasized Printing///////////////////////
,//////////////////////////////////////////////////////////
:Emphasized Print(On/Off)
,Turn emphasized print mode on/off
]
]Do you want to turn emphasized printing On or Off,
]Press [ESC] to return to the menu.
]
]
[[On
[[Off
\@echo off
\cls
\if %1 == On goto EmpOn
\echo F>prn
\m printer.mnu
\:EmpOn
\echo E>prn
\m printer.mnu
,//////////////////////////////////////////////////////////
,////////////////End of Emphasized Printer/////////////////
,//////////////////////////////////////////////////////////
,
,
,//////////////////////////////////////////////////////////
,////////////////Print Line Test///////////////////////////
,//////////////////////////////////////////////////////////
:Print Line Test
?Print line to test setup
\@echo off
\cls
\echo This is a test of the printer setup.> prn
\m printer.mnu
,//////////////////////////////////////////////////////////
,////////////////End of Print Line Test////////////////////
,//////////////////////////////////////////////////////////
,
,
:Return to the Main Menu
>rwmenu.mnu
,()()()()()()()()()()()()()()()()()()()()()()()()()()()()Page#2
~Printer Control Menu for the IBM Proprinter (Page#2)
,
,
,//////////////////////////////////////////////////////////
,////////////////Double-Wide Printing (On/Off)/////////////
,//////////////////////////////////////////////////////////
:Continuous Double-Wide Printing (On/Off)
?Set the printer to double-wide printing
]
]Do you want to turn Double-Wide Printing On or Off?
]Press [ESC] to return to the Menu.
]
]
[[On
[[Off
]
]
\@echo off
\cls
\if %1 == On goto DouOn
\echo W0>prn
\d:
\cd\menu
\m printer.mnu
\:DouOn
\echo W1>prn
\d:
\cd\menu
\m printer.mnu
,//////////////////////////////////////////////////////////
,////////////////End of Double-Wide Printing///////////////
,//////////////////////////////////////////////////////////
,
,
,//////////////////////////////////////////////////////////
,////////////////Set Print Direction///////////////////////
,//////////////////////////////////////////////////////////
:Set Print Direction
?Change to left-to-right printing only
]
]Choose Two for two direction printing or choose LTR to have
]left-to-right printing or press [ESC] to return to the menu.
]
]
[[Two
[[LTR
]
]
\@echo off
\cls
\if %1 == Two goto Do2
\echo U1>prn
\d:
\cd\menu
\m printer.mnu
\:Do2
\echo U0>prn
\d:
\cd\menu
\m printer.mnu
,//////////////////////////////////////////////////////////
,////////////////End of Set Print Direction////////////////
,//////////////////////////////////////////////////////////
,
,
,//////////////////////////////////////////////////////////
,////////////////Double-Strike Printing////////////////////
,//////////////////////////////////////////////////////////
:Double-Strike Printing (On/Off)
?Turn double-strike print mode On/Off
]
]Do you want to turn Double-Strike On or Off,
]Press [ESC] to return to the menu.
]
]
[[On
[[Off
]
\@echo off
\cls
\if %1 == On goto DoubOn
\echo H>prn
\d:
\cd\menu
\m printer.mnu
\:DoubOn
\echo G>prn
\d:
\cd\menu
\m printer.mnu
,//////////////////////////////////////////////////////////
,////////////////End of Double Strike Printing/////////////
,//////////////////////////////////////////////////////////
,
,
,//////////////////////////////////////////////////////////
,////////////////Continuous Overscore//////////////////////
,//////////////////////////////////////////////////////////
:Continuous Overscore (On/Off)
?Start or stop continuous overscoring (overlining)
]
]Do you want to turn Continuous Overscoring On or Off?
]
]
[[On
[[Off
]
\@echo off
\cls
\if %1 == On goto OvrOn
\echo _0>prn
\d:
\m printer.mnu
\:OvrOn
\echo _1>prn
\d:
\m printer.mnu
,//////////////////////////////////////////////////////////
,////////////////End of Continuous Overscore///////////////
,//////////////////////////////////////////////////////////
,
,
,//////////////////////////////////////////////////////////
,////////////////Continuous Underscore/////////////////////
,//////////////////////////////////////////////////////////
:Continuous Underscore (On/Off)
?Start or stop continuous underscoring
]
]Do you want to turn continuous underscoring On or Off?
]
]
[[On
[[Off
]
\@echo off
\cls
\if %1 == On goto UdrOn
\echo -0>prn
\d:
\m printer.mnu
\:UdrOn
\echo -1>prn
\d:
\m printer.mnu
,//////////////////////////////////////////////////////////
,////////////////End of Continuous Underscore//////////////
,//////////////////////////////////////////////////////////
:Return to the Main Menu
>rwmenu.mnu
!END OF PRINTER.MNU